home *** CD-ROM | disk | FTP | other *** search
/ PC World Interactive 7 / PC World Interactive 7.iso / program / ctutor.exe / ANSWERS / CH07_3.C < prev    next >
C/C++ Source or Header  |  1994-05-15  |  473b  |  30 lines

  1. #include "stdio.h"
  2. #include "string.h"
  3.  
  4. char my_string[20] = "C is neat!";
  5.  
  6. void main()
  7. {
  8. int index;
  9.  
  10.    printf("%s\n", my_string);
  11.    
  12.    for (index = 0 ; my_string[index] ; index = index + 1)
  13.       printf("%c", my_string[index]);
  14.    printf("\n");
  15.    
  16.    for(index = strlen(my_string) ; index > 0 ; index = index - 1)
  17.       printf("%c", my_string[index - 1]);
  18.    printf("\n");
  19. }
  20.  
  21.  
  22.  
  23. /* Result of execution
  24.  
  25. C is neat!
  26. C is neat!
  27. !taen si C
  28.  
  29. */
  30.